home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / TheBearsAdventure.swf / scripts / frame_6 / PlaceObject2_679_149 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2005-08-04  |  306 b   |  19 lines

  1. onClipEvent(enterFrame){
  2.    if(startquake)
  3.    {
  4.       count = 10;
  5.       startquake = false;
  6.    }
  7.    if(count > 0)
  8.    {
  9.       _root._x = random(6) - 3;
  10.       _root._y = random(6) - 3;
  11.       count--;
  12.       if(count == 0)
  13.       {
  14.          _root._x = 0;
  15.          _root._y = 0;
  16.       }
  17.    }
  18. }
  19.